home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / turttleo.swf / scripts / DefineSprite_85_game_scr / frame_1 / DoAction_2.as next >
Encoding:
Text File  |  2007-10-01  |  265 b   |  15 lines

  1. this.onMouseMove = function()
  2. {
  3.    if(!_global.keyboard_control)
  4.    {
  5.       _root.main.game.move_char(this._xmouse,this._ymouse);
  6.    }
  7. };
  8. this.onMouseDown = function()
  9. {
  10.    if(!_global.keyboard_control)
  11.    {
  12.       _root.main.game.jump_char();
  13.    }
  14. };
  15.